-
Notifications
You must be signed in to change notification settings - Fork 11.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove "available since" comments #4424
Conversation
|
* NOTE: This contract does not suffice to receive tokens. See {ERC1155Holder}. | ||
*/ | ||
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really understand why we have separate ERC1155Receiver and ERC1155Holder contracts. I think we should merge them, and only keep ERC1155Holder.
…penzeppelin-contracts into remove-available-since
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a missing import to remove from scripts/generate/templates/SafeCast.js
that might require another commit but LGTM, let me know if you need reapproving
The documentation includes comments saying "Available since vX.Y" meant to indicate that a feature was introduced in a minor, because the docs are only versioned by major. We don't need this since we're moving to 5.0.
Blocked by #4423 because the changes toupgradeable.patch
conflict.Fixes LIB-948